home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
nan_news
/
toolkit
/
stod.c
< prev
next >
Wrap
Text File
|
1991-08-15
|
2KB
|
59 lines
/*
* File......: STOD.C
* Author....: Clayton Neff
* Date......: $Date: 15 Aug 1991 23:08:28 $
* Revision..: $Revision: 1.2 $
* Log file..: $Logfile: E:/nanfor/src/stod.c_v $
*
* This is an original work by Clayton Neff and is placed in the
* public domain.
*
* Modification history:
* ---------------------
*
* $Log: E:/nanfor/src/stod.c_v $
*
* Rev 1.2 15 Aug 1991 23:08:28 GLENN
* Forest Belt proofread/edited/cleaned up doc
*
* Rev 1.1 14 Jun 1991 19:53:58 GLENN
* Minor edit to file header
*
* Rev 1.0 01 Apr 1991 01:03:00 GLENN
* Nanforum Toolkit
*
*
*/
/* $DOC$
* $FUNCNAME$
* FT_STOD()
* $CATEGORY$
* Conversion
* $ONELINER$
* Convert a date string to a Clipper date data type
* $SYNTAX$
* FT_STOD( <cDateStr> ) -> dDateType
* $ARGUMENTS$
* <cDateStr> is a Clipper string in the format "CCYYMMDD".
* $RETURNS$
* A Clipper date type.
* $DESCRIPTION$
* This function allows the programmer to hard code a date into the
* program without knowing what the current date type is. This
* function is the converse of the Clipper DTOS() function.
* $EXAMPLES$
* LOCAL dMyDate
* dMyDate := FT_STOD( "19901127" )
* $END$
*/
#include "extend.h"
CLIPPER FT_STOD(void)
{
_retds( _parc(1) ) ;
}